home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 11 / Mac Magazin and MacEasy Magazine CD - Issue 11.iso / Sharewarebibliothek / Entwickler / WASTE 1.1 C / LongCoords.h next >
Text File  |  1994-07-09  |  405b  |  32 lines

  1. /*
  2.  *    LongCoords.h
  3.  *
  4.  *    C/C++ interface to the WASTE text engine:
  5.  *    Long Coordinates
  6.  *
  7.  *    version 1.0
  8.  *
  9.  *    Copyright (c) 1993-1994 Merzwaren
  10.  *    All Rights Reserved
  11.  * 
  12.  */
  13.  
  14. #ifndef __LONGCOORDINATES__ 
  15. #ifndef _LongCoords_
  16. #define _LongCoords_
  17.  
  18. typedef struct LongPt {
  19.     long v;
  20.     long h;
  21. } LongPt;
  22.  
  23. typedef struct LongRect {
  24.     long top;
  25.     long left;
  26.     long bottom;
  27.     long right;
  28. } LongRect;
  29.  
  30. #endif
  31. #endif
  32.